home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
c
/
sozobon
/
sozlib15.zoo
/
sozdistr
/
include
/
xdlibs
/
setjmp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-08-28
|
362 b
|
15 lines
#ifndef _SETJMP_H
#define _SETJMP_H
/* this structure is needed for the setjmp() and longjmp() functions */
typedef unsigned long jmp_buf[13]; /* a7, a6, (a7), d2-d7/a2-a5 */
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
/* problems ...
int catch (jmp_buf id, int (*fn )(void ));
void throw (jmp_buf id, int rv);
*/
#endif /* _SETJMP_H */